home *** CD-ROM | disk | FTP | other *** search
/ Chronicles of Narnia, The…) (Electronic Press Kit) / Chronicles of Narnia, The - The Lion, the Witch and the Wardrobe (Europe) (Electronic Press Kit).bin / bv_n_logos_sw.swf / scripts / frame_1 / PlaceObject2_18_10 / CLIPACTIONRECORD onClipEvent(enterFrame).as
Text File  |  2005-10-03  |  609b  |  27 lines

  1. onClipEvent(enterFrame){
  2.    x = _X;
  3.    y = _Y;
  4.    h = _xscale;
  5.    w = _yscale;
  6.    if(Math.abs(x - _level1._root.logoXtemp) > 1)
  7.    {
  8.       x += (_level1._root.logoXtemp - x) / 8;
  9.       _X = x;
  10.    }
  11.    if(Math.abs(y - _level1._root.logoYtemp) > 1)
  12.    {
  13.       y += (_level1._root.logoYtemp - y) / 8;
  14.       _Y = y;
  15.    }
  16.    if(Math.abs(h - _level1._root.logoScaletemp) > 1)
  17.    {
  18.       h += (_level1._root.logoScaletemp - h) / 8;
  19.       _xscale = h;
  20.    }
  21.    if(Math.abs(w - _level1._root.logoScaletemp) > 1)
  22.    {
  23.       w += (_level1._root.logoScaletemp - w) / 8;
  24.       _yscale = w;
  25.    }
  26. }
  27.